<p class="Paragraph">Number: Any integer value that initializes the random-number generator. If Number is omitted, the current value of the system timer is used.</p>
<p class="P2">Example:</p>
<p class="PropText">Sub ExampleRandomize</p>
<p class="PropText">Dim iVar As Integer, sText As String</p>
<p class="PropText">Dim iSpectral(10) As Integer</p>
<p class="PropText"/>
<p class="PropText">Randomize 2^14-1</p>
<p class="PropText">For iCount = 1 To 1000</p>
<p class="PropText">iVar = Int((10 * Rnd) ) REM Bereich von 0 bis 9</p>